home *** CD-ROM | disk | FTP | other *** search
/ Mastering Computers 3 / Mastering Computers Vol 3.iso / Win95 / Fun&Utils / MFCMSG.EXE / DLGCOMBO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-01  |  340 b   |  16 lines

  1. #include "comcombo.h"
  2.  
  3. //////////////////
  4. // CComboDialog: Uses combo combo box.
  5. //
  6. class CComboDialog : public CDialog {
  7.    CComboCombo m_combo;    // here it is
  8. public:
  9.    CComboDialog(CWnd* pParent = NULL);
  10. protected:
  11.    virtual BOOL OnInitDialog();
  12.    //{{AFX_MSG(CComboDialog)
  13.    //}}AFX_MSG
  14.    DECLARE_MESSAGE_MAP()
  15. };
  16.